import '@/app/styles/community.scss'; import { Target, Flame, Trophy, ListChecks } from 'lucide-react'; import { fetchTrackRecord } from '@/lib/api/community'; import TierBadge from '@/components/community/TierBadge'; type Props = { params: Promise<{ sid: string }>; }; // 프로필 "예측 적중률" 탭 (익명 허용 · SSR) — 티어 배지·적중률·스트릭·표본수 export default async function UserProfileTrackRecordPage({ params }: Props) { const { sid } = await params; const res = await fetchTrackRecord(sid); const record = res.success ? res.data : null; if (!res.success) { return